home *** CD-ROM | disk | FTP | other *** search
/ 3D GFX / 3D GFX.iso / amiutils / a_d / cyberdevkit / c / examples / makefile < prev    next >
Encoding:
Makefile  |  1995-12-31  |  156 b   |  11 lines

  1. CC = gcc
  2.  
  3. CFLAGS = -s -O2 -noixemul
  4.  
  5. Window: Window.c
  6.     -echo "Compiling & Linking Window... "
  7.     $(CC) Window.c $(CFLAGS) -o Window
  8.  
  9. clean:
  10.     -delete Window.o
  11.